home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul-4.lha / ixemul-41.4 / man / cat3 / strcat.0 < prev    next >
Text File  |  1992-08-10  |  1KB  |  67 lines

  1.  
  2. STRCAT(3)                  UNIX Programmer's Manual                  STRCAT(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrccaatt - concatenate strings
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrccaatt(_c_h_a_r _*_s, _c_o_n_s_t _c_h_a_r _*_a_p_p_e_n_d)
  12.  
  13.      _c_h_a_r _*
  14.      ssttrrnnccaatt(_c_h_a_r _*_s, _c_o_n_s_t _c_h_a_r _*_a_p_p_e_n_d, _s_i_z_e___t _c_o_u_n_t)
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The ssttrrccaatt() and ssttrrnnccaatt() functions append a copy of the null­terminated
  18.      string _a_p_p_e_n_d to the end of the null­terminated string _s, then add a ter­
  19.      minating `\0'. The string _s must have sufficient space to hold the re­
  20.      sult.
  21.  
  22.      The ssttrrnnccaatt() function appends not more than _c_o_u_n_t characters.
  23.  
  24. RREETTUURRNN VVAALLUUEESS
  25.      The ssttrrccaatt() and ssttrrnnccaatt() functions return the pointer _s.
  26.  
  27. SSEEEE AALLSSOO
  28.      bcopy(3),  memccpy(3),  memcpy(3),  memmove(3),  strcpy(3)
  29.  
  30. SSTTAANNDDAARRDDSS
  31.      The ssttrrccaatt() and ssttrrnnccaatt() functions conform to ANSI C3.159­1989 (``ANSI
  32.      C'').
  33.  
  34. BSD Experimental                 June 29, 1991                               1
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.